devisualization.util.opengl.function_wrappers.v20

Undocumented in source.

Members

Enums

AttribDataTypes
enum AttribDataTypes
Undocumented in source.
AttribPointerSize
enum AttribPointerSize
Undocumented in source.
AttribPointerType
enum AttribPointerType
Undocumented in source.
DrawBuffers
enum DrawBuffers
Undocumented in source.
FaceStencilAction
enum FaceStencilAction
Undocumented in source.
Faces
enum Faces
Undocumented in source.
ProgramObjects
enum ProgramObjects
Undocumented in source.
ShaderObjects
enum ShaderObjects
Undocumented in source.
ShaderTypes
enum ShaderTypes
Undocumented in source.
TestFunctions
enum TestFunctions
Undocumented in source.
VertexAttributeNames
enum VertexAttributeNames
Undocumented in source.

Functions

glAttachShader
void glAttachShader(uint program, uint shader)
Undocumented in source. Be warned that the author may not have intended to support it.
glBindAttribLocation
void glBindAttribLocation(uint program, uint index, string name)
Undocumented in source. Be warned that the author may not have intended to support it.
glBlendEquationSeparate
void glBlendEquationSeparate(BlendMode modeRGB, BlendMode modeAlpha)
Undocumented in source. Be warned that the author may not have intended to support it.
glCompileShader
void glCompileShader(uint shader)
Undocumented in source. Be warned that the author may not have intended to support it.
glCreateProgram
uint glCreateProgram()
Undocumented in source. Be warned that the author may not have intended to support it.
glCreateShader
uint glCreateShader(ShaderTypes shaderType)
Undocumented in source. Be warned that the author may not have intended to support it.
glDeleteProgram
void glDeleteProgram(uint program)
Undocumented in source. Be warned that the author may not have intended to support it.
glDeleteShader
void glDeleteShader(uint shader)
Undocumented in source. Be warned that the author may not have intended to support it.
glDetachShader
void glDetachShader(uint program, uint shader)
Undocumented in source. Be warned that the author may not have intended to support it.
glDisableVertexAttribArray
void glDisableVertexAttribArray(uint index)
Undocumented in source. Be warned that the author may not have intended to support it.
glDrawBuffers
void glDrawBuffers(int n, DrawBuffers[] bufs)
Undocumented in source. Be warned that the author may not have intended to support it.
glEnableVertexAttribArray
void glEnableVertexAttribArray(uint index)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetActiveAttrib
void glGetActiveAttrib(uint program, uint index, int* size, AttribDataTypes type, string name)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetActiveUniform
void glGetActiveUniform(uint program, uint index, int size, AttribDataTypes type, string name)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetAttachedShaders
void glGetAttachedShaders(uint program, uint[] shaders)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetAttribLocation
int glGetAttribLocation(uint program, string name)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetProgram
void glGetProgram(uint program, ProgramObjects pname, int params)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetProgram
void glGetProgram(uint program, ProgramObjects pname, int[] params)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetProgramInfoLog
string glGetProgramInfoLog(uint program)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetShader
void glGetShader(uint shader, ShaderObjects pname, int params)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetShader
void glGetShader(uint shader, ShaderObjects pname, int[] params)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetShaderInfoLog
void glGetShaderInfoLog(uint shader, string infoLog)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetShaderSource
string glGetShaderSource(uint shader)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetUniform
void glGetUniform(uint program, int location, float[] params)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetUniform
void glGetUniform(uint program, int location, int[] params)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetUniformLocation
int glGetUniformLocation(uint program, string name)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetVertexAttrib
void glGetVertexAttrib(uint index, VertexAttributeNames pname, double[] params)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetVertexAttrib
void glGetVertexAttrib(uint index, VertexAttributeNames pname, float[] params)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetVertexAttrib
void glGetVertexAttrib(uint index, VertexAttributeNames pname, int[] params)
Undocumented in source. Be warned that the author may not have intended to support it.
glGetVertexAttribPointer
void*[] glGetVertexAttribPointer(uint index)
Undocumented in source. Be warned that the author may not have intended to support it.
glIsProgram
bool glIsProgram(uint program)
Undocumented in source. Be warned that the author may not have intended to support it.
glIsShader
bool glIsShader(uint shader)
Undocumented in source. Be warned that the author may not have intended to support it.
glLinkProgram
void glLinkProgram(uint program)
Undocumented in source. Be warned that the author may not have intended to support it.
glShaderSource
void glShaderSource(uint shader, string _string)
Undocumented in source. Be warned that the author may not have intended to support it.
glStencilFuncSeparate
void glStencilFuncSeparate(Faces face, TestFunctions func, int ref_, uint mask)
Undocumented in source. Be warned that the author may not have intended to support it.
glStencilMaskSeparate
void glStencilMaskSeparate(Faces face, uint mask)
Undocumented in source. Be warned that the author may not have intended to support it.
glStencilOpSeparate
void glStencilOpSeparate(Faces face, FaceStencilAction sfail, FaceStencilAction dpfail, FaceStencilAction dppass)
Undocumented in source. Be warned that the author may not have intended to support it.
glUniform
void glUniform(int location, float v0)
Undocumented in source. Be warned that the author may not have intended to support it.
glUniform
void glUniform(int location, float v0, float v1)
Undocumented in source. Be warned that the author may not have intended to support it.
glUniform
void glUniform(int location, float v0, float v1, float v2)
Undocumented in source. Be warned that the author may not have intended to support it.
glUniform
void glUniform(int location, float v0, float v1, float v2, float v3)
Undocumented in source. Be warned that the author may not have intended to support it.
glUniform
void glUniform(int location, int v0)
Undocumented in source. Be warned that the author may not have intended to support it.
glUniform
void glUniform(int location, int v0, int v1)
Undocumented in source. Be warned that the author may not have intended to support it.
glUniform
void glUniform(int location, int v0, int v1, int v2)
Undocumented in source. Be warned that the author may not have intended to support it.
glUniform
void glUniform(int location, int v0, int v1, int v2, int v3)
Undocumented in source. Be warned that the author may not have intended to support it.
glUniform
void glUniform(int location, float[] value)
Undocumented in source.
glUniform
void glUniform(int location, int[] value)
Undocumented in source.
glUniform
void glUniform(int location, uint[] value)
Undocumented in source.
glUniformMatrix2
void glUniformMatrix2(int location, bool transpose, float[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
glUniformMatrix3
void glUniformMatrix3(int location, bool transpose, float[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
glUniformMatrix4
void glUniformMatrix4(int location, bool transpose, float[] value)
Undocumented in source. Be warned that the author may not have intended to support it.
glUseProgram
void glUseProgram(uint program)
Undocumented in source. Be warned that the author may not have intended to support it.
glValidateProgram
void glValidateProgram(uint program)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, double v0)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, float v)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, short v0)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, double v0, double v1)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, double[2] v)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, float v0, float v1)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, float[2] v)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, short v0, short v1)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, short[2] v)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, double v0, double v1, double v2)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, double[3] v)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, float v0, float v1, float v2)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, float[3] v)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, short v0, short v1, short v2)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, short[3] v)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, float v0, float v1, float v2, float v3)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttrib
void glVertexAttrib(uint index, float[4] v)
Undocumented in source. Be warned that the author may not have intended to support it.
glVertexAttribPointer
void glVertexAttribPointer(uint index, AttribPointerSize size, AttribPointerType type, bool normalized, int stride, void* pointer)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta